home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / mhis020.zip / CRITNAME.MEX < prev    next >
Text File  |  1996-09-06  |  308b  |  13 lines

  1. #include <max.mh>
  2. #include "callers.mh"
  3.  
  4. int main () {
  5.   read_callers ();
  6.   input_str (callers.criteria.name, INPUT_LB_LINE & INPUT_DEFAULT, 0, 0,
  7.     COL_LBLUE + "Only show which users: " + COL_CYAN);
  8.   if (callers.criteria.name = "")
  9.     callers.criteria.name := "*";
  10.   write_callers ();
  11.   }
  12.  
  13.